{% extends 'base.html' %} {% load site_tags %} {% block title %}All Courses — {{ site_settings.institute_name }}{% endblock %} {% block content %}

Browse Courses & Certifications

Start Learning or take the certification exam directly

{% if categories %}
All {% for cat in categories %} {{ cat.name }} {% endfor %}
{% endif %}
{% for course in courses %}
{% if course.thumbnail %} {{ course.title }} {% else %}
{% endif %}
{% if course.category %} {{ course.category.name }} {% endif %} {{ course.level }} {% if course.is_featured %} Featured {% endif %} {% if course.requires_practical %} Practical {% endif %}
{{ course.title }}

{{ course.short_description|truncatechars:90 }}

Exam {% if course.has_sale_price %} {{ course.currency }} {{ course.exam_fee }} {{ course.currency }} {{ course.display_exam_price }} {% else %} {{ course.currency }} {{ course.display_exam_price }} {% endif %}
{% if course.has_learning_content and course.learning_price %}
Learning {{ course.currency }} {{ course.learning_price }} {% if course.subscription_enabled and course.subscription_price_monthly %} · or {{ course.currency }} {{ course.subscription_price_monthly }}/mo {% endif %}
{% endif %}
{{ course.duration_minutes }} min exam {% if course.duration_weeks %} ~{{ course.duration_weeks }} weeks {% endif %} {{ course.get_module_count }} modules
{% empty %}
No courses available yet

Seed taxonomy after migrate: python manage.py seed_course_taxonomy

{% endfor %}
{% endblock %}